Get all recordings of a call

This endpoint lists the recordings of one call, without the audio. To download the audio itself, take a recording's seq from the response and pass it to Get a specific recording of a call.

Endpoint

GET /api/v1/calls/{callId}/recordings

Path parameters

Parameter Type Description
callId string UUID of the call.

Request

GET /api/v1/calls/82c6d362-d68b-4c6f-8136-1739323379e7/recordings HTTP/1.1
Host: livehub.audiocodes.io
Authorization: Bearer {token}

Response

200 OK — the recordings of the call.

Field Description
seq Sequence number of the recording, ordered by start time.
name Name of the recording.
filename Name of the .wav file.
{
  "recordings": [
    {
      "seq": "0",
      "name": "calls/{callId}/recordings/0",
      "filename": "call-{callId}-recording-0.wav"
    }
  ]
}